home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1993 / Internet Info CD-ROM (Walnut Creek) (1993).iso / networking / terms / tipx / CONVERT2TIPX < prev    next >
Encoding:
Text File  |  1991-10-11  |  333 b   |  14 lines

  1. #!/bin/sh
  2. if fgrep 'TIPX' hunt.c 2>&1 > /dev/null
  3.    then
  4.        echo 'diffs have already been applied';
  5.        exit 1;
  6.    else
  7.        echo 'applying patches to tip to make tipx';
  8. fi
  9. patch -p < tipx.diff.01
  10. echo ''
  11. echo 'patches have been applied.  if patch was successful,'
  12. echo 'then edit Makefile to your liking and make.'
  13. exit 0
  14.